@import './variables.css';
@import './globals.css';
@import './style.css';

/* Título */
.max-title {
    width: 100%;
    max-width: 130rem; /*140rem*/
    padding: 0 4rem;
    margin: 0 auto;
    margin-bottom: 15rem; /* Alterar */
  }

/* galeria de fotos */
body{
    background-color: #eee;
}
header{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size:10rem;
    font-weight: 900;
    color: var(--primary-color);
}

header .header__subtitle{
    font-size: 8rem;
    color: var(--primary-color);
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
    margin-bottom: 8rem;
}

.gallery-items{
    width: 340px;
    height: 340px;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px #0006;
    flex-grow: 1;
    transition: transform .5s linear;
}
.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items:hover{
    transform: scale(1.3);
}